home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / Goodies / MSGBLA~1 / DATA.Z / abouttb.FRM (.txt) < prev    next >
Visual Basic Form  |  1997-06-09  |  2KB  |  63 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About"
  5.    ClientHeight    =   1275
  6.    ClientLeft      =   5520
  7.    ClientTop       =   3930
  8.    ClientWidth     =   3690
  9.    Icon            =   "abouttb.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    PaletteMode     =   1  'UseZOrder
  14.    ScaleHeight     =   1275
  15.    ScaleWidth      =   3690
  16.    ShowInTaskbar   =   0   'False
  17.    Begin VB.Label lblInfo 
  18.       Caption         =   "74451.1245@compuserve.com"
  19.       Height          =   255
  20.       Index           =   4
  21.       Left            =   180
  22.       TabIndex        =   2
  23.       Top             =   840
  24.       Width           =   2805
  25.    End
  26.    Begin VB.Label lblInfo 
  27.       Caption         =   "Author: Cris Williams"
  28.       Height          =   255
  29.       Index           =   1
  30.       Left            =   180
  31.       TabIndex        =   1
  32.       Top             =   600
  33.       Width           =   2805
  34.    End
  35.    Begin VB.Label lblInfo 
  36.       Caption         =   "Message Blaster/Taskbar Icon Sample"
  37.       BeginProperty Font 
  38.          Name            =   "MS Sans Serif"
  39.          Size            =   8.25
  40.          Charset         =   0
  41.          Weight          =   700
  42.          Underline       =   0   'False
  43.          Italic          =   0   'False
  44.          Strikethrough   =   0   'False
  45.       EndProperty
  46.       Height          =   255
  47.       Index           =   0
  48.       Left            =   180
  49.       TabIndex        =   0
  50.       Top             =   240
  51.       Width           =   3375
  52.    End
  53. Attribute VB_Name = "frmAbout"
  54. Attribute VB_GlobalNameSpace = False
  55. Attribute VB_Creatable = False
  56. Attribute VB_PredeclaredId = True
  57. Attribute VB_Exposed = False
  58. Option Explicit
  59. Private Sub Form_Load()
  60.    On Error Resume Next
  61.    Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 3
  62. End Sub
  63.